crypto/hmac.hmac.opad (field)

9 uses

	crypto/hmac (current package)
		hmac.go#L47: 	opad, ipad   []byte
		hmac.go#L61: 		if err := h.outer.(marshalable).UnmarshalBinary(h.opad); err != nil {
		hmac.go#L66: 		h.outer.Write(h.opad)
		hmac.go#L111: 	h.outer.Write(h.opad)
		hmac.go#L119: 	h.opad = omarshal
		hmac.go#L155: 	hm.opad = make([]byte, blocksize)
		hmac.go#L162: 	copy(hm.opad, key)
		hmac.go#L166: 	for i := range hm.opad {
		hmac.go#L167: 		hm.opad[i] ^= 0x5c